1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

技術英語 > percent (or %) / percentage > 3.14 percent (%) / the percentage of the population

Last updated at Posted at 2015-04-18

percent (もしくは%)

percentage
を混同する時がある。

http://www.biomedicaleditor.com/word-usage-percent.html
によると
具体的な数値がともなう場合は「percent(%)」を使う、とのこと。具体的な数値がともなわない場合は「percentageを使う」

3.14 percent
3.14 %
The percentage of the population ...
sample.c
#include <stdio.h>

int main(void)
{
    double young_percent;
    double old_percent;
    
    young_percent = 34.15;
    old_percent = 100.0 - young_percent;
    ... 
}

変数名に_percentという単位を表す接尾辞をつけるべきか、別の略称を使うべきかは考えものである。
別の略称の場合、規約で決めておかないと後々でわからなくなりそう。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?