Commit 8474d67f by rallui

Upload New File

parent 90c92303
Showing with 27 additions and 0 deletions
#include <stdio.h>
#include <stdio.h>
void sisestus(int *n, int *m)
{
do
{
printf("Sisesta n: \n");
scanf("%d", n);
}
while(*n<3);
do
{
printf("Sisesta m: \n");
scanf("%d", m);
}
while(*m>14);
}
int main()
{
int m, n;
sisestus(&n, &m);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment