C语言 “整型常量上的后缀“k”无效”错误

uxhixvfz  于 2023-05-06  发布在  其他
关注(0)|答案(4)|浏览(220)

我正在写一个C程序,使用高斯算法打印给定年份的复活节日期。我对C还真不熟悉。代码如下:

#include <math.h>

int main () {
  int year = 1998;
  int a = year % 19;
  int b = year % 4;
  int c = year % 7;
  int k = floor (year/100);
  int p = floor ((13 + 8k)/25);
  int q = floor (k/4);
  int M = (15 − p + k − q) % 30;
  int N = (4 + k − q) % 7;
  int d = (19a + M) % 30;
  int e = (2b + 4c + 6d + N) % 7;
  if (d == 29 && e == 6) {
    printf("19 April");
  }
  else if (d == 28 && e = 6 && (11M + 11) % 30 < 19) {
    printf("18 April");
  }
  else if (22 + d + e < 32) {
    printf("%d March", (22 + d + e));
  }
  else {
    printf("%d April", d + e - 9);
  }
  return 0;
}

根据CodePad的错误:

Line 23: error: invalid suffix "k" on integer constant
In function 'main':
Line 10: error: stray '\342' in program
Line 10: error: stray '\210' in program
Line 10: error: stray '\222' in program
Line 10: error: expected ')' before 'p'
Line 10: error: stray '\342' in program
Line 10: error: stray '\210' in program
Line 10: error: stray '\222' in program
Line 11: error: stray '\342' in program
Line 11: error: stray '\210' in program
Line 11: error: stray '\222' in program
Line 11: error: expected ')' before 'q'
Line 11: error: invalid suffix "a" on integer constant
Line 11: error: invalid suffix "b" on integer constant
Line 16: error: invalid suffix "c" on integer constant
Line 21: error: invalid suffix "d" on integer constant
Line 32: error: invalid suffix "M" on integer constant

据我所知,在第23行中没有任何“k”,那么为什么编译器会抱怨呢?

pjngdqdw

pjngdqdw1#

我认为这个8k可能是8*k

int p = floor ((13 + 8k)/25);
sshcrbum

sshcrbum2#

当你乘整数时,你需要使用8*k而不是8k。

bprjcwpo

bprjcwpo3#

除了使用Unicode字符(你不应该用Winword或任何其他文本处理器编辑程序),你不需要floor函数,因为你沿着只使用整数。整数变量不能保存分数值,因此当您将year除以100时,您将仅获得商的整数部分。
排队

if (d == 28 && e = 6 && (11M + 11) % 30 < 19)

在缺少的*旁边,您有一个=,它应该是==

2sbarzqh

2sbarzqh4#

int p = floor ((13 + 8k)/25);

什么是8k?你是说8*k吗?
以下地方也存在类似问题:

int d = (19a + M) % 30; 

 int e = (2b + 4c + 6d + N) % 7;

 else if (d == 28 && e = 6 && (11M + 11) % 30 < 19) {

相关问题