gpt4 book ai didi

c - 如何在 C 程序中用户要求的表的倍数旁边打印奇数/偶数

转载 作者:行者123 更新时间:2023-11-30 21:18:25 25 4
gpt4 key购买 nike

#include <stdio.h>
int main()
{
int n, range, i;
printf("Enter an integer to find multiplication table: ");
scanf("%d",&n);
printf("Enter range of multiplication table:");
scanf("%d",&range);
for(i=1;i<=range;++i)
{
printf("%d * %d = %d\n", n, i, n*i);
}
return 0;

}

我需要在奇数倍数旁边显示奇数,在偶数倍数旁边显示偶数。

最佳答案

printf() 语句修改为:

printf ( "%d * %d = %d : %s\n", n, i, n*i, (n*i % 2 == 0) ? "EVEN" : "ODD" );

模运算符给出 n 除以 2 的余数。

关于c - 如何在 C 程序中用户要求的表的倍数旁边打印奇数/偶数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24240796/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com