ruby.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
If you are interested in the Ruby programming language, come join us! Tell us about yourself when signing up. If you just want to join Mastodon, another server will be a better place for you.

Administered by:

Server stats:

1.1K
active users

hyumanase

<stdio.h>
<stdlib.h>
int main(void)
{
int a, b, c, x;
printf("1 から 100 までの整数を1つ考えてください.\n");
printf("それを 3 で割った余り? "); scanf("%d", &a);
printf("それを 5 で割った余り? "); scanf("%d", &b);
printf("それを 7 で割った余り? "); scanf("%d", &c);
x = (70 * a + 21 * b + 15 * c) % 105;
printf("あなたの考えた数は %d でしょう!\n", x);
return 0;
}

2024-{06-28} Day{6}